home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
293_02
/
mk.bat
< prev
next >
Wrap
DOS Batch File
|
1989-08-23
|
182b
|
7 lines
if "%1" == "" cl /AC /FPi87 %FILE%
if "%1" == "" goto exit
if exist %1 cl /AC /FPi87 %1
if exist %1 goto exit
if not exist %1 cl /AC /FPi87 %1.c
if not exist %1 goto exit
:exit